C 언어 코드 조각 - 17.난수를이용한로또번호.c

/*
	5.1.7. 예제. 난수를 사용한 로또 번호 생성기 : 난수를사용한로또생성기.c 
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

void main(void)
{
	int i = 0;
	int intDaeBak;

	srand( (unsigned) time(0) );		//난수 초기값 설정

	for(i = 0;i < 5;i++)				//5개의 수 발생(중복처리X)
	{
		//rand() : 난수 발생(0~32767)
		intDaeBak = rand() % 45 + 1;	//1~45사이의 수 
		printf("%d\t", intDaeBak);		//로또번호 출력(중복 가능)
	}

	printf("\n");
}

 

Comments


Comments are closed